home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat2 / pathconf.0 < prev    next >
Text File  |  1996-09-01  |  4KB  |  105 lines

  1.  
  2. PATHCONF(2)                UNIX Programmer's Manual                PATHCONF(2)
  3.  
  4. NNAAMMEE
  5.      ppaatthhccoonnff, ffppaatthhccoonnff - get configurable pathname variables
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<uunniissttdd..hh>>
  9.  
  10.      _l_o_n_g
  11.      ppaatthhccoonnff(_c_o_n_s_t _c_h_a_r _*_p_a_t_h, _i_n_t _n_a_m_e)
  12.  
  13.      _l_o_n_g
  14.      ffppaatthhccoonnff(_i_n_t _f_d, _i_n_t _n_a_m_e)
  15.  
  16. DDEESSCCRRIIPPTTIIOONN
  17.      The ppaatthhccoonnff() and ffppaatthhccoonnff() functions provides a method for applica-
  18.      tions to determine the current value of a configurable system limit or
  19.      option variable associated with a pathname or file descriptor.
  20.  
  21.      For ppaatthhccoonnff, the _p_a_t_h argument is the name of a file or directory.  For
  22.      ffppaatthhccoonnff, the _f_d argument is an open file descriptor.  The _n_a_m_e argument
  23.      specifies the system variable to be queried.  Symbolic constants for each
  24.      name value are found in the include file <unistd.h>.
  25.  
  26.      The available values are as follows:
  27.  
  28.      _PC_LINK_MAX
  29.              The maximum file link count.
  30.  
  31.      _PC_MAX_CANON
  32.              The maximum number of bytes in terminal canonical input line.
  33.  
  34.      _PC_MAX_INPUT
  35.              The minimum maximum number of bytes for which space is available
  36.              in a terminal input queue.
  37.  
  38.      _PC_NAME_MAX
  39.              The maximum number of bytes in a file name.
  40.  
  41.      _PC_PATH_MAX
  42.              The maximum number of bytes in a pathname.
  43.  
  44.      _PC_PIPE_BUF
  45.              The maximum number of bytes which will be written atomically to a
  46.              pipe.
  47.  
  48.      _PC_CHOWN_RESTRICTED
  49.              Return 1 if appropriate privileges are required for the chown(2)
  50.              system call, otherwise 0.
  51.  
  52.      _PC_NO_TRUNC
  53.              Return 1 if file names longer than KERN_NAME_MAX are truncated.
  54.  
  55.      _PC_VDISABLE
  56.              Returns the terminal character disabling value.
  57.  
  58. RREETTUURRNN VVAALLUUEESS
  59.      If the call to ppaatthhccoonnff or ffppaatthhccoonnff is not successful, -1 is returned
  60.      and _e_r_r_n_o is set appropriately.  Otherwise, if the variable is associated
  61.      with functionality that does not have a limit in the system, -1 is re-
  62.      turned and _e_r_r_n_o is not modified.  Otherwise, the current variable value
  63.      is returned.
  64.  
  65. EERRRROORRSS
  66.      If any of the following conditions occur, the ppaatthhccoonnff and ffppaatthhccoonnff
  67.      functions shall return -1 and set _e_r_r_n_o to the corresponding value.
  68.  
  69.      [EINVAL]      The value of the _n_a_m_e argument is invalid.
  70.  
  71.      [EINVAL]      The implementation does not support an association of the
  72.                    variable name with the associated file.
  73.      PPaatthhccoonnff() will fail if:
  74.  
  75.      [ENOTDIR]       A component of the path prefix is not a directory.
  76.  
  77.      [ENAMETOOLONG]  A component of a pathname exceeded 255 characters, or an
  78.                      entire path name exceeded 1023 characters.
  79.  
  80.      [ENOENT]        The named file does not exist.
  81.  
  82.      [EACCES]        Search permission is denied for a component of the path
  83.                      prefix.
  84.  
  85.      [ELOOP]         Too many symbolic links were encountered in translating
  86.                      the pathname.
  87.  
  88.      [EIO]           An I/O error occurred while reading from or writing to
  89.                      the file system.
  90.  
  91.      FFppaatthhccoonnff() will fail if:
  92.  
  93.      [EBADF]   _f_d is not a valid open file descriptor.
  94.  
  95.      [EIO]     An I/O error occurred while reading from or writing to the file
  96.                system.
  97.  
  98. SSEEEE AALLSSOO
  99.      sysctl(3)
  100.  
  101. HHIISSTTOORRYY
  102.      The ppaatthhccoonnff and ffppaatthhccoonnff functions first appeared in 4.4BSD.
  103.  
  104. 4th Berkeley Distribution        June 4, 1993                                2
  105.